Product Code Database
Example Keywords: grand theft -shoe $48-163
barcode-scavenger
   » » Wiki: Argument (complex Analysis)
Tag Wiki 'Argument (complex Analysis)'.
Tag

In (particularly in ), the argument of a complex number , denoted , is the between the positive axis and the line joining the origin and , represented as a point in the , shown as \varphi in Figure 1. By convention the positive real axis is drawn pointing rightward, the positive axis is drawn pointing upward, and complex numbers with positive real part are considered to have an argument with positive sign.

When any real-valued angle is considered, the argument is a multivalued function operating on the nonzero . The of this function is single-valued, typically chosen to be the unique value of the argument that lies within the interval . In this article the multi-valued function will be denoted and its principal value will be denoted , but in some sources the capitalization of these symbols is exchanged.

In some older mathematical texts, the term "amplitude" was used interchangeably with argument to denote the angle of a complex number. This usage is seen in older references such as ' Complex Analysis: An introduction to the theory of analytic functions of one complex variable (1979), where amplitude referred to the argument of a complex number. While this term is largely outdated in modern texts, it still appears in some regional educational resources, where it is sometimes used in introductory-level textbooks.


Definition
An argument of the nonzero complex number , denoted , is defined in two equivalent ways:
  1. Geometrically, in the , as the 2D polar angle \varphi from the positive real axis to the vector representing . The numeric value is given by the angle in , and is positive if measured counterclockwise.
  2. Algebraically, as any real quantity \varphi such that z = r (\cos \varphi + i \sin \varphi) = r e^{i\varphi} for some positive real (see Euler's formula). The quantity is the (or absolute value) of , denoted ||: r = \sqrt{x^2 + y^2}.

The argument of zero is usually left undefined. The names magnitude, for the modulus, and phase,Dictionary of Mathematics (2002). phase. for the argument, are sometimes used equivalently.

Under both definitions, it can be seen that the argument of any non-zero complex number has many possible values: firstly, as a geometrical angle, it is clear that whole circle rotations do not change the point, so angles differing by an integer multiple of (a complete turn) are the same, as reflected by figure 2 on the right. Similarly, from the periodicity of and , the second definition also has this property.


Principal value
Because a complete rotation around the origin leaves a complex number unchanged, there are many choices which could be made for \varphi by circling the origin any number of times. This is shown in figure 2, a representation of the (set-valued) function f(x,y)=\arg(x+iy), where a vertical line (not shown in the figure) cuts the surface at heights representing all the possible choices of angle for that point.

When a function is required, then the usual choice, known as the , is the value in the open-closed interval radians, that is from to excluding radians itself (equiv., from −180 to +180 degrees, excluding −180° itself). This represents an angle of up to half a complete circle from the positive real axis in either direction.

Some authors define the range of the principal value as being in the closed-open interval .


Notation
The principal value sometimes has the initial letter capitalized, as in , especially when a general version of the argument is also being considered. Note that notation varies, so and may be interchanged in different texts.

The set of all possible values of the argument can be written in terms of as:

\arg(z) = \{\operatorname{Arg}(z) + 2\pi n \mid n \in \mathbb Z\}.


Computing from the real and imaginary part
If a complex number is known in terms of its real and imaginary parts, then the function that calculates the principal value is called the two-argument arctangent function, :
\operatorname{Arg}(x + iy) = \operatorname{atan2}(y,\, x).
The function is available in the math libraries of many programming languages, sometimes under a different name, and usually returns a value in the range .

In some sources the argument is defined as \operatorname{Arg}(x + iy) = \arctan(y/x), however this is correct only when , where y/x is well-defined and the angle lies between -\tfrac\pi2 and \tfrac\pi2. Extending this definition to cases where is not positive is relatively involved. Specifically, one may define the principal value of the argument separately on the half-plane and the two quadrants with , and then patch the definitions together:

\operatorname{Arg}(x + iy) = \operatorname{atan2}(y,\, x) =
\begin{cases}
 \arctan\left(\frac y x\right)       &\text{if } x > 0, \\[5mu]
 \arctan\left(\frac y x\right) + \pi &\text{if } x < 0 \text{ and } y \ge 0, \\[5mu]
 \arctan\left(\frac y x\right) - \pi &\text{if } x < 0 \text{ and } y < 0, \\[5mu]
 +\frac{\pi}{2}   &\text{if } x = 0 \text{ and } y > 0, \\[5mu]
 -\frac{\pi}{2}   &\text{if } x = 0 \text{ and } y < 0, \\[5mu]
 \text{undefined} &\text{if } x = 0 \text{ and } y = 0.
     
\end{cases}

See atan2 for further detail and alternative implementations.


Realizations of the function in computer languages

Wolfram language (Mathematica)
In Wolfram language, there's Arg[z]:

Arg[x + y I] = \begin{cases}

 \text{undefined} &\text{if } |x| = \infty \text{ and } |y|=\infty, \\[5mu]
 0 &\text{if } x = 0 \text{ and } y = 0, \\[5mu]
 0 &\text{if } x = \infty, \\[5mu]
 \pi &\text{if } x = -\infty, \\[5mu]
 \pm\frac{\pi}{2} &\text{if } y = \pm\infty, \\[5mu]
 \operatorname{Arg}(x + y i) &\text{otherwise}.
     
\end{cases}

or using the language's ArcTan:

Arg[x + y I] = \begin{cases}

 0 &\text{if } x = 0 \text{ and } y = 0, \\[5mu]
 \text{ArcTan[x, y]} &\text{otherwise}.
     
\end{cases}

ArcTan[x, y] is \operatorname{atan2}(y, x) extended to work with infinities. ArcTan[0, 0] is Indeterminate (i.e. it's still defined), while ArcTan[Infinity, -Infinity] doesn't return anything (i.e. it's undefined).


Maple
Maple's argument(z) behaves the same as Arg[z] in Wolfram language, except that argument(z) also returns \pi if z is the special floating-point value −0.. Also, Maple doesn't have \operatorname{atan2}.


MATLAB
's angle(z) behaves the same as Arg[z] in Wolfram language, except that it is

\begin{cases}

 \frac{1\pi}{4} &\text{if } x = \infty \text{ and } y = \infty, \\[5mu]
 -\frac{1\pi}{4} &\text{if } x = \infty \text{ and } y = -\infty, \\[5mu]
 \frac{3\pi}{4} &\text{if } x = -\infty \text{ and } y = \infty, \\[5mu]
 -\frac{3\pi}{4} &\text{if } x = -\infty \text{ and } y = -\infty.
     
\end{cases}

Unlike in Maple and Wolfram language, MATLAB's atan2(y, x) is equivalent to angle(x + y*1i). That is, atan2(0, 0) is 0.


Identities
One of the main motivations for defining the principal value is to be able to write complex numbers in modulus-argument form. Hence for any complex number ,
z = \left| z \right| e^{i \operatorname{Arg} z}.

This is only really valid if is non-zero, but can be considered valid for if is considered as an indeterminate form—rather than as being undefined.

Some further identities follow. If and are two non-zero complex numbers, then

\begin{align}
                   \operatorname{Arg}(z_1  z_2) &\equiv \operatorname{Arg}(z_1) + \operatorname{Arg}(z_2) \pmod{\mathbb{R}/2\pi\mathbb{Z}}, \\
 \operatorname{Arg}\left(\frac{z_1}{z_2}\right) &\equiv \operatorname{Arg}(z_1) - \operatorname{Arg}(z_2) \pmod{\mathbb{R}/2\pi\mathbb{Z}}.
     
\end{align}

If and is any integer, then

\operatorname{Arg}\left(z^n\right) \equiv n \operatorname{Arg}(z) \pmod{\mathbb{R}/2\pi\mathbb{Z}}.


Example
\operatorname{Arg}\biggl(\frac{-1- i}{i}\biggr) = \operatorname{Arg}(-1 - i) - \operatorname{Arg}(i) = -\frac{3\pi}{4} - \frac{\pi}{2} = -\frac{5\pi}{4}


Using the complex logarithm
From z = |z| e^{i \operatorname{Arg}(z)}, we get i \operatorname{Arg}(z) = \ln \frac{z}
, alternatively \operatorname{Arg}(z) = \operatorname{Im}(\ln \frac{z}
) = \operatorname{Im}(\ln z). As we are taking the imaginary part, any normalisation by a real scalar will not affect the result. This is useful when one has the complex logarithm available.


Extended argument
The extended argument of a number z (denoted as \overline{\arg}(z)) is the set of all real numbers congruent to \arg (z) modulo 2\pi.\overline{\arg}(z) = \arg (z) + 2k\pi, \forall k \in \mathbb{Z}


Bibliography


External links

Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs
1s Time